import { OgDataBox } from '@/app/share/_components/og-data-box'; import { OgImage } from '@/app/share/_components/og-image'; import { OgNotFound } from '@/app/share/_components/og-not-found'; import { createOgResponse } from '@/app/share/_components/og-response'; import type { Address } from 'viem'; import { getOgEquity } from '../_components/data'; interface RouteParams { params: Promise<{ id: string; }>; } export async function GET(request: Request, { params }: RouteParams) { const url = new URL(request.url); // Get fund address from params const { id } = await params; const equity = await getOgEquity(id); if (!equity) { return createOgResponse(); } return createOgResponse( ); }